Ubuntu - list packages installed on ubuntu system

chris (2006-11-09 10:00:37)
7104 views
1 replies
listing installed packages on an ubuntu system is simple - just drop into a terminal and type the following:

dpkg --get-selections | grep -v deinstall

then you can use grep to find the package you're looking for, so for example - to find 'gaim' (and related packages), just do:

$ dpkg --get-selections | grep -v deinstall| grep gaim
gaim install
gaim-data install
$


christo
comment
rw
2009-05-04 22:36:46

listing installed packages on an ubuntu system is simple - just drop into a terminal and type the following:

dpkg --get-selections | grep -v deinstall

then you can use grep to find the package you're looking for, so for example - to find 'gaim' (and related packages), just do:

$ dpkg --get-selections | grep -v deinstall| grep gaim
gaim install
gaim-data install
$


christo



dpkg -l
and, maybe
dpkg -l | grep ^ii
reply iconedit reply